home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 8597 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.6 KB  |  41 lines

  1. Newsgroups: comp.lang.c++
  2. Path: netcom.com!marnold
  3. From: marnold@netcom.com (Matt Arnold)
  4. Subject: Re: DLLs in Borland C++ 4.0 nees bc40rtl.dll????
  5. Message-ID: <marnoldDMwx5H.D5H@netcom.com>
  6. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  7. References: <4g3f6u$20i@ixnews7.ix.netcom.com>
  8. Date: Sat, 17 Feb 1996 09:03:17 GMT
  9. Sender: marnold@netcom.netcom.com
  10.  
  11. ticker@ix.netcom.com(Pavel Popov ) writes:
  12.  
  13. >I just realised that the DLL I wrote a long time ago needs another DLL
  14. >which comes with Borland C++ - bc40rtl.dll.
  15. >Is there any way do not include the bc40rtl.dll or it is always a part
  16. >or the application by design????
  17.  
  18. >Please help!
  19.  
  20. >Respond on my e-mail address ticker@ix.netcom.com
  21. >Thank you
  22.  
  23. If you build your DLL with "dynamic run-time libraries" turned on, your
  24. DLL will rely on the dynamic version (ie, the "DLL version) of Borland's
  25. runt-time library.  Borland's dynamic run-time library is contained in 
  26. BC40RTL.DLL (thus the "RTL" as part of it's name).
  27.  
  28. If you build your DLL with "static run-time libraries" turned on, the
  29. run-time library code will be directly linked into your DLL (or EXE) and
  30. it will not need BC40RTL.DLL.
  31.  
  32. Regards,
  33. -------------------------------------------------------------------------
  34. Matt Arnold                       |        | ||| | |||| |  | | || ||
  35. marnold@netcom.com                |        | ||| | |||| |  | | || ||
  36. Boston, MA                        |      0 | ||| | |||| |  | | || ||
  37. 617.389.7384 (h) 617.576.2760 (w) |        | ||| | |||| |  | | || ||
  38. C++, MIDI, Win32/95 developer     |        | ||| 4 3 1   0 8 3 || ||
  39. -------------------------------------------------------------------------
  40.  
  41.